home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 2.iso
/
STUTTGART
/
UTIL
/
MEMORY
/
VIRTUASRC
/
!Virtual
/
Makefile
< prev
next >
Wrap
Makefile
|
1993-09-07
|
732b
|
35 lines
# Project name: Virtual
#
# AMU Makefile for Virtual module
# By BDB & Nick Smith, 1993
# Define DEBUG for debugging output: add -DDEBUG to CFLAGS
DEPEND = -depend !Depend
CFLAGS = $(DEPEND) -throwback -ff -zps1
ASMFLAGS = $(DEPEND) -throwback -stamp -quit
LINKFLAGS = -map
all : Virtual
it : Virtual
.SUFFIXES: .o .c .s
.c.o:; cc $(CFLAGS) -s -o t.$* $<
sed -f sedregs < t.$* > u.$*
objasm $(ASMFLAGS) -from u.$* -to $@
.s.o:; objasm $(ASMFLAGS) -from $< -to $@
LIBS =
OBJS = virtual.o pager.o lib.o control.o output.o divide.o poll.o swiv.o
Virtual: $(OBJS)
link $(LINKFLAGS) -m $(OBJS) $(LIBS) -o $@
clean:
wipe o.* ~c~v
wipe t.* ~c~v
wipe u.* ~c~v
# Dynamic dependencies: